CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 栈 数据结构

搜索资源列表

  1. ExpIsCorrect

    0下载:
  2. 栈结构检验表达式中括号是否匹配的源代码,适合初学者进一步学习数据结构-stack testing regular expression matching brackets whether the source code for beginners further study data structure
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:1413
    • 提供者:陈珲
  1. jiangshangfei

    0下载:
  2. 该程序用于进行多项式的四则运算,其中抽象数据类型主要有栈和结构 -the procedures for conducting the four polynomial operations, which mainly abstract data type and structure of a stack
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2632
    • 提供者:江上飞
  1. data_struct(C)

    0下载:
  2. C语言数据结构源代码,包括队列,栈和链表等。-C language source code for data structure, including the queue, stack and other Chain.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:14580
    • 提供者:david
  1. data_structC++

    0下载:
  2. C++数据结构源代码及算法实现说明,包括链表、树、队列和栈等。-C + + source code for data structure and algorithm descr iption, including Chain, trees and Queue and stack.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:93669
    • 提供者:david
  1. ShiYanBaoGao

    0下载:
  2. 数据结构中堆栈与队列的应用的练习程序,包括1.用数组的形式实现顺序栈的定义和操作 2.利用堆栈将队列中的元素逆置 3.括号匹配算法 包括调试报告和实验报告 程序源代码在实验报告当中 -stack data structures and the application of Queue practice procedures, including one. using arrays in the form of the definition of the order stack and ope
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:859587
    • 提供者:张焕人
  1. Cmaze

    0下载:
  2. 利用栈和队等数据结构的算法逻辑,我自己做得一款迷宫游戏,很粗糙,但还可以啦!是火影版的呦!-stack and the use of data such as the structure of the algorithm logic, I was doing a new maze game, a very rough, it can also be! Yes strove version of the next adventure!
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:82009
    • 提供者:byron
  1. duiliedeyingyong

    0下载:
  2. 数据结构里队列的应用,以及栈的递归实现方法,对于函数的循环来实现函数的递归调用-queue data structure, the application stack and the recursive method, Functions for the cycle to achieve the recursive function call
  3. 所属分类:多媒体

    • 发布日期:2008-10-13
    • 文件大小:10291
    • 提供者:许见
  1. shunxuzhan

    0下载:
  2. 用C语言编写的数据结构中顺序栈的程序-C language data structures sequence stack procedures.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1054
    • 提供者:hurrys
  1. hduong2

    0下载:
  2. 数据结构(c++)栈顺序存储结构的全部操作 以及数据类型转换-data structure (c) stack sequence storage structure and operation of all types of data conversion
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1684
    • 提供者:hd0178
  1. factShow

    0下载:
  2. 数据结构的代码演示程序,利用栈的原理,将级数fact递归问题的执行过程以直观的形式演示出来。-data structure code demo program using the stack principle, Recursive series fact of the implementation process in the form of visual presentation out.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:42823
    • 提供者:znb
  1. biaodashqiuzhi

    0下载:
  2. 算术表达式求值的程序,用栈实现的,可以进行加、减、乘、除、乘方、求余计算,支持小数和括号 (数据结构作业)-arithmetic expression evaluates the procedures used stack to achieve, and can be, plus or minus, multiplication, addition, the involution, for I, support minority and brackets (data structure oper
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:1406
    • 提供者:朱建鲁
  1. foundations

    0下载:
  2. 数据结构的java编程 实现的有链表,队列,集合,栈,二叉树等!-data structure of java programming in the linked list, queue, collection, stack, such as the binary tree!
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:4120
    • 提供者:杨海亮
  1. huiwennew

    0下载:
  2. 数据结构中---回文的判断,使用栈和队列来实现,练习队列和栈的用法-data structure --- Palindrome's judgment, Stack and Queue to achieve, exercise and Stack Queue usage
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1355
    • 提供者:zhangr
  1. differenct

    0下载:
  2. 堆和栈的区别 一、预备知识—程序的内存分配 一个由c/C++编译的程序占用的内存分为以下几个部分 1、栈区(stack)— 由编译器自动分配释放 ,存放函数的参数值,局部变量的值等。其操作方式类似于数据结构中的栈。 2、堆区(heap) — 一般由程序员分配释放, 若程序员不释放,程序结束时可能由OS回收 。注意它与数据结构中的堆是两回事,分配方式倒是类似于链表,呵呵。 3、全局区(静态区)(static)—,全局变量和静态变量的存储是放在一块的,初始化的全局变量和静态变量在
  3. 所属分类:技术管理

    • 发布日期:2008-10-13
    • 文件大小:14949
    • 提供者:stevephen
  1. OSmulu

    0下载:
  2. MDO1铺设好了数据结构和主调函数。但是发现在输出显示目录和添加删除时比较麻烦,所以想改用结构体,双向链表和栈实现。 MDO2实现了用栈显示出当前路径 MDO3实现了cmd中输入路径名成查找到当前目录的问题。各种情况和cmd的路径一样。 MDO4实现了MD,MK,RD,DEL功能,但是只能在当前目录下操作创建删除文件夹。 -MDO1 laying of a good data structure and function of melody. However found in t
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:10319
    • 提供者:billdong
  1. LWIP_manule

    0下载:
  2. LWIP是TCP/IP协议栈的一种实现。LWIP的主要目的是减少存储器利用量和代码尺寸,使LWIP适合应用于小的、资源有限的处理器如嵌入式系统。为了减少处理器和存储器要求,lwIP可以通过不需任何数据拷贝的API进行裁减。 本文叙述了lwIP的设计与实现。叙述了协议实现及子系统中所使用的算法和数据结构如存储和缓冲管理系统。还包括LWIP API的参考手册和使用LWIP 的一些代码例子。-LWIP is TCP / IP Protocol Stack A. LWIP the main purp
  3. 所属分类:TCP/IP协议栈

    • 发布日期:2008-10-13
    • 文件大小:693536
    • 提供者:tumbler
  1. mystack1008

    0下载:
  2. 包括栈的push\\pop,计数,查找等操作,简单易行,适合数据结构的初学者-including Stack push \\ pop, calculators, searching operation is simple, the data structure suitable for beginners
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:68581
    • 提供者:杜莉
  1. mgqj

    0下载:
  2. 这小程序可以巩固数据结构中栈的知识,以及用到的递归算法。-procedures can consolidate data structure Stack knowledge, and use the recursive algorithm.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1254
    • 提供者:陈朝熙
  1. expressionvalue

    0下载:
  2. 属于利用C++开发的数据结构代码,利用栈结构实现了算术表达式的求值。-development is the use of C code structure of the data, using stack structure for arithmetic expression value.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:273403
    • 提供者:张婧姝
  1. DATALECTURE

    1下载:
  2. 数据结构 授课教案 本章主要介绍以下内容:    1.数据结构研究的主要内容    2.数据结构中涉及的基本概念    3.算法的概念、描述方法以及评价标准 栈和队列 1.树的定义和存储结构    2.二叉树的定义、性质、存储结构    3.二叉树的遍历、线索算法    4.树和二叉树的转换    5.哈夫曼树及其应用 -data structure templates teach this chapter introduces the follow
  3. 所属分类:WEB源码

    • 发布日期:2008-10-13
    • 文件大小:1303504
    • 提供者:wu
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 47 »
搜珍网 www.dssz.com